home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 December / Designer's Club 1997 December.iso / pc / IDEASRC / Main.Dir / 00011.ls < prev    next >
Encoding:
Text File  |  1997-11-12  |  301 b   |  16 lines

  1. on exitFrame
  2.   go(the frame)
  3.   repeat with n = 2 to 8
  4.     if rollOver(n) then
  5.       set the visible of sprite n to 0
  6.       updateStage()
  7.     end if
  8.   end repeat
  9.   repeat with n = 2 to 8
  10.     if not rollOver(n) then
  11.       set the visible of sprite n to 1
  12.       updateStage()
  13.     end if
  14.   end repeat
  15. end
  16.